home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / ctask22d / res.bc < prev    next >
Text File  |  1993-02-26  |  710b  |  28 lines

  1. #
  2. #  --- Version 2.2 93-02-26 08:49 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: RES.C
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #    "model"  is the memory model letter to use (all except Tiny & Huge).
  9. #    "lib"    is the Turbo C library path
  10. #
  11. reqopt=+BC.CFG 
  12. optopt=-v -vi
  13. !if !$d(model)
  14. model=l
  15. !endif
  16. ctlib=ctasktc
  17.  
  18. .c.obj:
  19.    bcc $(reqopt) $(optopt) -m$(model) $*.c
  20.  
  21. res.exe:     res.obj ctsuptc$(model).lib $(ctlib).lib
  22.    tlink /m /l /v c0$(model) $*,$*,$*,ctsuptc$(model) $(ctlib) c$(model)
  23.  
  24. res.obj:     res.c tsk.h tskconf.h
  25.  
  26.  
  27.